home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include <stdarg.h>
- #include <errno.h>
-
- #include <proto/dos.h>
-
- /************************************************************************/
-
- #undef vfprintf
-
- int vfprintf(FILE *Stream, const char *FormatString, va_list Params)
-
- {
- int Result;
-
- Result=VFPrintf(__fileno(Stream), (char *)FormatString, Params);
- if (Result==-1)
- {
- Stream->Flags.Error=1;
- errno=IoErr();
- }
- return Result;
- }
-